home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / pipe.c,v < prev    next >
Text File  |  1988-06-19  |  1KB  |  77 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.06.19.14.31.40;  author ouster;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/* 
  25.  * pipe.c --
  26.  *
  27.  *    Procedure to map from Unix pipe system call to Sprite.
  28.  *
  29.  * Copyright 1986 Regents of the University of California
  30.  * All rights reserved.
  31.  */
  32.  
  33. #ifndef lint
  34. static char rcsid[] = "$Header: pipe.c,v 1.2 86/06/26 09:38:51 nelson Exp $ SPRITE (Berkeley)";
  35. #endif not lint
  36.  
  37. #include "sprite.h"
  38. #include "fs.h"
  39.  
  40. #include "compatInt.h"
  41. #include <errno.h>
  42.  
  43.  
  44. /*
  45.  *----------------------------------------------------------------------
  46.  *
  47.  * pipe --
  48.  *
  49.  *    Procedure to map from Unix pipe system call to Sprite Fs_CreatePipe
  50.  *    system call.
  51.  *
  52.  * Results:
  53.  *    Error returned if error returned from Fs_CreatePipe. Otherwise
  54.  *    UNIX_SUCCESS.
  55.  *
  56.  * Side effects:
  57.  *    None.
  58.  *
  59.  *----------------------------------------------------------------------
  60.  */
  61.  
  62. int
  63. pipe(filedes)
  64.     int    filedes[2];            /* array of stream identifiers */    
  65. {
  66.     ReturnStatus status;    /* result returned by Fs_CreatePipe */
  67.  
  68.     status = Fs_CreatePipe(&(filedes[0]), &(filedes[1]));
  69.     if (status != SUCCESS) {
  70.     errno = Compat_MapCode(status);
  71.     return(UNIX_ERROR);
  72.     } else {
  73.     return(UNIX_SUCCESS);
  74.     }
  75. }
  76. @
  77.